home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.3 Development Libraries / SGI IRIX 6.3 Development Libraries.iso / dist / dist6.3 / ViewKit_dev.idb / usr / include / Vk / VkNLS.h.z / VkNLS.h
C/C++ Source or Header  |  1996-09-20  |  2KB  |  57 lines

  1. ////////////////////////////////////////////////////////////////////////////////
  2. ///////   Copyright 1992, Silicon Graphics, Inc.  All Rights Reserved.   ///////
  3. //                                                                            //
  4. // This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;     //
  5. // the contents of this file may not be disclosed to third parties, copied    //
  6. // or duplicated in any form, in whole or in part, without the prior written  //
  7. // permission of Silicon Graphics, Inc.                                       //
  8. //                                                                            //
  9. // RESTRICTED RIGHTS LEGEND:                                                  //
  10. // Use,duplication or disclosure by the Government is subject to restrictions //
  11. // as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data     //
  12. // and Computer Software clause at DFARS 252.227-7013, and/or in similar or   //
  13. // successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -    //
  14. // rights reserved under the Copyright Laws of the United States.             //
  15. //                                                                            //
  16. ////////////////////////////////////////////////////////////////////////////////
  17. #ifndef VKNLS_H
  18. #define VKNLS_H
  19. #include <Xm/Xm.h>
  20.  
  21.  
  22. typedef void (*NLSCallback)( void *);
  23.  
  24. class VkNLS {
  25.  
  26.   private:
  27.  
  28.     static void checkNLSCallback ( XtPointer,   XtIntervalId* );
  29.     long   _lic_type;
  30.     int    _check_period;
  31.     long   _vnd_ky;
  32.     char  *_vnd_id;
  33.     long   lic_type;
  34.     long   _license_id;
  35.  
  36.     int getLicense( char *, long , char *,
  37.             int, long ,
  38.             long *);
  39.  
  40.  
  41.     static void loseLicenseCallback(XtPointer, XtIntervalId * );
  42.  
  43.     NLSCallback _noLicenseCallback;
  44.     void *_clientData;
  45.     
  46.   public:
  47.  
  48.     VkNLS ( char *, long , int , char *,
  49.         NLSCallback loseLicenseCallback = NULL,
  50.         void *clientData = NULL);
  51.  
  52.     ~VkNLS();
  53. };
  54.  
  55.  
  56. #endif
  57.